Conversation
Report for GZ2E01 (23bee3b - 5ff4250)📈 Matched code: 63.57% (+0.33%, +37352 bytes) ✅ 90 new matches:
...and 60 more new matches |
| /* 80564990-805649A0 0094F0 0010+00 1/0 0/0 0/0 .text checkChangeJoint__12daNpc_Maro_cFi */ | ||
| /* 80564990 */ BOOL checkChangeJoint(int arg0) { return arg0 == 4; }; | ||
| /* 805649A0-805649B0 009500 0010+00 1/0 0/0 0/0 .text checkRemoveJoint__12daNpc_Maro_cFi */ |
There was a problem hiding this comment.
symbol comments can be removed
| 13072, 13072, 0, 12896, 13088, 13088, 13088, 13072, 13072, 13088, 13072, 13072, | ||
| 13072, 13072, 13072, 13072, 0, |
There was a problem hiding this comment.
heap sizes are better in hex imo
There was a problem hiding this comment.
OK, that means that I'll have to modify my beautify anm data script to spit out hex values for this.
| void daNpc_Maro_c::getType() { | ||
| // NONMATCHING | ||
| u8 daNpc_Maro_c::getType() { | ||
| switch ((u8)fopAcM_GetParam(this)) { |
There was a problem hiding this comment.
think this would look better as fopAcM_GetParam(this) & 0xFF
There was a problem hiding this comment.
Using the debug rom, turns out it looks like:
u8 param = fopAcM_GetParam(this) & 0xFF;
switch (param) {
| || 0 == strcmp(dComIfGp_getEventManager().getRunEventName(), "CONTINUE_ARROWTUTORIAL") | ||
| || 0 == strcmp(dComIfGp_getEventManager().getRunEventName(), "END_ARROWTUTORIAL") | ||
| || 0 == strcmp(dComIfGp_getEventManager().getRunEventName(), "CLEAR_ARROWTUTORIAL")) { | ||
| // |
| mDoMtx_stack_c::multVec(&my_vec_0, &my_vec_1); | ||
| mGndChk.SetPos(&my_vec_1); | ||
| my_vec_1.y = dComIfG_Bgsp().GroundCross(&mGndChk); | ||
| JUT_ASSERT(0xDA9, -(1000000000.0f) != my_vec_1.y); |
There was a problem hiding this comment.
this assert doesnt match the debug rom afaict. make sure the variables are named the same as in debug
| } | ||
|
|
||
| if (mStagger.checkStagger() == 0) { | ||
| // mtype switch. |
There was a problem hiding this comment.
what is this comment referring to?
There was a problem hiding this comment.
This was an incorrect stub comment that I should have deleted beforehand XD
Fixed all the issues you noted, btw.
Uh oh!
There was an error while loading. Please reload this page.